home *** CD-ROM | disk | FTP | other *** search
Text File | 1995-02-12 | 620 b | 19 lines | [TEXT/MPS ] |
- % When printing a DVI file using low-level PostScript printing,
- % OzTeX looks for a file called global.ps in the current folder and
- % includes it after DVItoPS.pro.
- %
- % Copy this file to the same folder as your DVI file to get the word
- % "DRAFT" printed in the same location on every page.
-
- /@bop0 % redefine @bop0 (see DVItoPS.pro)
- { pop % throw away page number
- /mysave save def
- initgraphics % use default coordinates
- /Helvetica-Bold findfont
- 72 scalefont setfont
- 36 36 moveto
- 0.95 setgray
- (DRAFT) show
- mysave restore
- } def
-